*{
    width: 100dvw;
    height: 100dvh;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    position: relative;
    font-family: 'Garamond';
}

#corp {
    background: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
    display: list-item;
    position: absolute;
}

#banner {
    --background-color: red;
    width: 100%;
    height: 35%;
    display: flex;
    position: relative;
    --display: none;
}

#descP {
    --background-color: rgb(29, 160, 184);
    color: white;
    width: 100%;
    height: 300px;
    display: flex;
    position: relative;
    border-radius: 0 0 0 25%;
    border-bottom: solid rgb(6, 175, 6) 5px;
    overflow: hidden;
    --display: none;
}

#projetos {
    --background: white;
    width: 100%;
    height: auto;
    display: list-item;
    position: relative;
    --display: none;
}

#contatos {
    --background: peru;
    width: 100%;
    height: 100px;
    margin-top: 4%;
    display: flex;
    align-items: start;
}

html ::-webkit-scrollbar {
    width: 15px;
}

html ::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #112e10;
}

html ::-webkit-scrollbar-track {
  background: #75ac6e;
}